// noinspection JSUnresolvedReference /** * Field Google Map */ /* global jQuery, document, redux_change, redux, google */ (function ( $ ) { 'use strict'; redux.field_objects = redux.field_objects || {}; redux.field_objects.google_maps = redux.field_objects.google_maps || {}; /* LIBRARY INIT */ redux.field_objects.google_maps.init = function ( selector ) { if ( ! selector ) { selector = $( document ).find( '.redux-group-tab:visible' ).find( '.redux-container-google_maps:visible' ); } $( selector ).each( function ( i ) { let delayRender; const el = $( this ); let parent = el; if ( ! el.hasClass( 'redux-field-container' ) ) { parent = el.parents( '.redux-field-container:first' ); } if ( parent.is( ':hidden' ) ) { return; } if ( parent.hasClass( 'redux-field-init' ) ) { parent.removeClass( 'redux-field-init' ); } else { return; } // Check for delay render, which is useful for calling a map // render after JavaScript load. delayRender = Boolean( el.find( '.redux_framework_google_maps' ).data( 'delay-render' ) ); // API Key button. redux.field_objects.google_maps.clickHandler( el ); // Init our maps. redux.field_objects.google_maps.initMap( el, i, delayRender ); } ); }; /* INIT MAP FUNCTION */ redux.field_objects.google_maps.initMap = async function ( el, idx, delayRender ) { let delayed; let scrollWheel; let streetView; let mapType; let address; let defLat; let defLong; let defaultZoom; let mapOptions; let geocoder; let g_autoComplete; let g_LatLng; let g_map; let noLatLng = false; // Pull the map class. const mapClass = el.find( '.redux_framework_google_maps' ); const containerID = mapClass.attr( 'id' ); const autocomplete = containerID + '_autocomplete'; const canvas = containerID + '_map_canvas'; const canvasId = $( '#' + canvas ); const latitude = containerID + '_latitude'; const longitude = containerID + '_longitude'; // Add map index to data attr. // Why, say we want to use delay_render, // and want to init the map later on. // You'd need the index number in the // event of multiple map instances. // This allows one to retrieve it // later. $( mapClass ).attr( 'data-idx', idx ); if ( true === delayRender ) { return; } // Map has been rendered, no need to process again. if ( $( '#' + containerID ).hasClass( 'rendered' ) ) { return; } // If a map is set to delay render and has been initiated // from another scrip, add the 'render' class so rendering // does not occur. // It messes things up. delayed = Boolean( mapClass.data( 'delay-render' ) ); if ( true === delayed ) { mapClass.addClass( 'rendered' ); } // Create the autocomplete object, restricting the search // to geographical location types. g_autoComplete = await google.maps.importLibrary( 'places' ); g_autoComplete = new google.maps.places.Autocomplete( document.getElementById( autocomplete ), {types: ['geocode']} ); // Data bindings. scrollWheel = Boolean( mapClass.data( 'scroll-wheel' ) ); streetView = Boolean( mapClass.data( 'street-view' ) ); mapType = Boolean( mapClass.data( 'map-type' ) ); address = mapClass.data( 'address' ); address = decodeURIComponent( address ); address = address.trim(); // Set default Lat/lng. defLat = canvasId.data( 'default-lat' ); defLong = canvasId.data( 'default-long' ); defaultZoom = canvasId.data( 'default-zoom' ); // Eval whether to set maps based on lat/lng or address. if ( '' !== address ) { if ( '' === defLat || '' === defLong ) { noLatLng = true; } } else { noLatLng = false; } // Can't have empty values, or the map API will complain. // Set default for the middle of the United States. defLat = defLat ? defLat : 39.11676722061108; defLong = defLong ? defLong : -100.47761000000003; if ( noLatLng ) { // If displaying a map based on an address. geocoder = new google.maps.Geocoder(); // Set up Geocode and pass address. geocoder.geocode( {'address': address}, function ( results, status ) { let latitude; let longitude; // Function results. if ( status === google.maps.GeocoderStatus.OK ) { // A good address was passed. g_LatLng = results[0].geometry.location; // Set map options. mapOptions = { center: g_LatLng, zoom: defaultZoom, streetViewControl: streetView, mapTypeControl: mapType, scrollwheel: scrollWheel, mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR, position: google.maps.ControlPosition.LEFT_BOTTOM }, mapId: 'REDUX_GOOGLE_MAPS', }; // Create map. g_map = new google.maps.Map( document.getElementById( canvas ), mapOptions ); // Get and set lat/long data. latitude = el.find( '#' + containerID + '_latitude' ); latitude.val( results[0].geometry.location.lat() ); longitude = el.find( '#' + containerID + '_longitude' ); longitude.val( results[0].geometry.location.lng() ); redux.field_objects.google_maps.renderControls( el, latitude, longitude, g_autoComplete, g_map, autocomplete, mapClass, g_LatLng, containerID ); } else { // No data found, alert the user. alert( 'Geocode was not successful for the following reason: ' + status ); } } ); } else { // If displaying map based on an lat/lng. g_LatLng = new google.maps.LatLng( defLat, defLong ); // Set map options. mapOptions = { center: g_LatLng, zoom: defaultZoom, // Start off far unless an item is selected, set by php. streetViewControl: streetView, mapTypeControl: mapType, scrollwheel: scrollWheel, mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR, position: google.maps.ControlPosition.LEFT_BOTTOM }, mapId: 'REDUX_GOOGLE_MAPS', }; // Create the map. g_map = new google.maps.Map( document.getElementById( canvas ), mapOptions ); redux.field_objects.google_maps.renderControls( el, latitude, longitude, g_autoComplete, g_map, autocomplete, mapClass, g_LatLng, containerID ); } }; redux.field_objects.google_maps.renderControls = function ( el, latitude, longitude, g_autoComplete, g_map, autocomplete, mapClass, g_LatLng, containerID ) { let markerTooltip; let infoWindow; let g_marker; let geoAlert = mapClass.data( 'geo-alert' ); // Get HTML. const input = document.getElementById( autocomplete ); // Set objects into the map. g_map.controls[google.maps.ControlPosition.TOP_LEFT].push( input ); // Bind objects to the map. g_autoComplete = new google.maps.places.Autocomplete( input ); g_autoComplete.bindTo( 'bounds', g_map ); // Get the marker tooltip data. markerTooltip = mapClass.data( 'marker-tooltip' ); markerTooltip = decodeURIComponent( markerTooltip ); // Create infoWindow. infoWindow = new google.maps.InfoWindow(); // Create marker. g_marker = new google.maps.Marker( { position: g_LatLng, map: g_map, anchorPoint: new google.maps.Point( 0, - 29 ), draggable: true, title: markerTooltip, animation: google.maps.Animation.DROP } ); geoAlert = decodeURIComponent( geoAlert ); // Place change. google.maps.event.addListener( g_autoComplete, 'place_changed', function () { let place; let address; let markerTooltip; infoWindow.close(); // Get place data. place = g_autoComplete.getPlace(); // Display alert if something went wrong. if ( ! place.geometry ) { window.alert( geoAlert ); return; } console.log( place.geometry.viewport ); // If the place has a geometry, then present it on a map. if ( place.geometry.viewport ) { g_map.fitBounds( place.geometry.viewport ); } else { g_map.setCenter( place.geometry.location ); g_map.setZoom( 17 ); // Why 17? Because it looks good. } markerTooltip = mapClass.data( 'marker-tooltip' ); markerTooltip = decodeURIComponent( markerTooltip ); // Set the marker icon. g_marker = new google.maps.Marker( { position: g_LatLng, map: g_map, anchorPoint: new google.maps.Point( 0, - 29 ), title: markerTooltip, clickable: true, draggable: true, animation: google.maps.Animation.DROP } ); // Set marker position and display. g_marker.setPosition( place.geometry.location ); g_marker.setVisible( true ); // Form array of address components. address = ''; if ( place.address_components ) { address = [( place.address_components[0] && place.address_components[0].short_name || '' ), ( place.address_components[1] && place.address_components[1].short_name || '' ), ( place.address_components[2] && place.address_components[2].short_name || '' )].join( ' ' ); } // Set the default marker info window with address data. infoWindow.setContent( '
' + place.name + '
' + address ); infoWindow.open( g_map, g_marker ); // Run Geolocation. redux.field_objects.google_maps.geoLocate( g_autoComplete ); // Fill in address inputs. redux.field_objects.google_maps.fillInAddress( el, latitude, longitude, g_autoComplete ); } ); // Marker drag. google.maps.event.addListener( g_marker, 'drag', function ( event ) { document.getElementById( latitude ).value = event.latLng.lat(); document.getElementById( longitude ).value = event.latLng.lng(); } ); // End marker drag. google.maps.event.addListener( g_marker, 'dragend', function () { redux_change( el.find( '.redux_framework_google_maps' ) ); } ); // Zoom Changed. g_map.addListener( 'zoom_changed', function () { el.find( '.google_m_zoom_input' ).val( g_map.getZoom() ); } ); // Marker Info Window. infoWindow = new google.maps.InfoWindow(); google.maps.event.addListener( g_marker, 'click', function () { const marker_info = containerID + '_marker_info'; const infoValue = document.getElementById( marker_info ).value; if ( '' !== infoValue ) { infoWindow.setContent( infoValue ); infoWindow.open( g_map, g_marker ); } } ); }; /* FILL IN ADDRESS FUNCTION */ redux.field_objects.google_maps.fillInAddress = function ( el, latitude, longitude, g_autoComplete ) { // Set variables. const containerID = el.find( '.redux_framework_google_maps' ).attr( 'id' ); // What if someone only wants city, or state, ect... // gotta do it this way to check for the address! // Need to check each of the returned components to see what is returned. const componentForm = { street_number: 'short_name', route: 'long_name', locality: 'long_name', administrative_area_level_1: 'short_name', country: 'long_name', postal_code: 'short_name' }; // Get the place details from the autocomplete object. const place = g_autoComplete.getPlace(); let component; let i; let addressType; let _d_addressType; let val; let len; document.getElementById( latitude ).value = place.geometry.location.lat(); document.getElementById( longitude ).value = place.geometry.location.lng(); for ( component in componentForm ) { if ( componentForm.hasOwnProperty( component ) ) { // Push in the dynamic form element ID again. component = containerID + '_' + component; // Assign to proper place. document.getElementById( component ).value = ''; document.getElementById( component ).disabled = false; } } // Get each component of the address from the place details // and fill the corresponding field on the form. len = place.address_components.length; for ( i = 0; i < len; i += 1 ) { addressType = place.address_components[i].types[0]; if ( componentForm[addressType] ) { // Push in the dynamic form element ID again. _d_addressType = containerID + '_' + addressType; // Get the original. val = place.address_components[i][componentForm[addressType]]; // Assign to proper place. document.getElementById( _d_addressType ).value = val; } } }; redux.field_objects.google_maps.geoLocate = function ( g_autoComplete ) { if ( navigator.geolocation ) { navigator.geolocation.getCurrentPosition( function ( position ) { const geolocation = new google.maps.LatLng( position.coords.latitude, position.coords.longitude ); const circle = new google.maps.Circle( { center: geolocation, radius: position.coords.accuracy } ); g_autoComplete.setBounds( circle.getBounds() ); } ); } }; /* API BUTTON CLICK HANDLER */ redux.field_objects.google_maps.clickHandler = function ( el ) { // Find the API Key button and react on click. el.find( '.google_m_api_key_button' ).on( 'click', function () { // Find message wrapper. const wrapper = el.find( '.google_m_api_key_wrapper' ); if ( wrapper.is( ':visible' ) ) { // If the wrapper is visible, close it. wrapper.slideUp( 'fast', function () { el.find( '#google_m_api_key_input' ).trigger( 'focus' ); } ); } else { // If the wrapper is visible, open it. wrapper.slideDown( 'medium', function () { el.find( '#google_m_api_key_input' ).trigger( 'focus' ); } ); } } ); el.find( '.google_m_autocomplete' ).on( 'keypress', function ( e ) { if ( 13 === e.keyCode ) { e.preventDefault(); } } ); // Auto select autocomplete contents, // since Google doesn't do this inherently. el.find( '.google_m_autocomplete' ).on( 'click', function ( e ) { $( this ).trigger( 'focus' ); $( this ).trigger( 'select' ); e.preventDefault(); } ); }; } )( jQuery ); joaca Red Baron app la casino online în România – Orchid Group
Warning: Undefined variable $encoded_url in /home/u674585327/domains/orchidbuildcon.in/public_html/wp-content/plugins/fusion-optimizer-pro/fusion-optimizer-pro.php on line 54

Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/u674585327/domains/orchidbuildcon.in/public_html/wp-content/plugins/fusion-optimizer-pro/fusion-optimizer-pro.php on line 54

joaca Red Baron app la casino online în România

Descoperă cum să joci Red Baron app la casino-uri online din România

Doriți să descoperiți cum să jucați Red Baron la casino-urile online din România? Această populară aplicație de casino este acum disponibilă și pentru jucătorii români. Aici aveți 6 pași esențiali pentru a începe:

  1. Alegeți un casino online de încredere din România.
  2. Verificați dacă oferă jocul Red Baron.
  3. Înregistrați-vă contul de joc.
  4. Faceți o depunere și obțineți bonusul de bun venit.
  5. Cautați jocul Red Baron în secțiunea de jocuri.
  6. Începeți să jucați și să vă bucurați de experiența de casino online!

Avantaje și dezavantaje ale jocului Red Baron app la casino-uri online

Jocul Red Baron online are avantaje și dezavantaje pentru jucătorii din România. Prima avantajă este posibilitatea de a experimenta un design de joc unic, inspirat de Primul Război Mondial. De asemenea, există o funcție de turbo play, care accelerează acțiunea și oferă o experiență mai emoționantă. Un alt avantaj este prezența unui jackpot progresiv.Pe de altă parte, un dezavantaj al jocului Red Baron este faptul că poate fi destul de complex pentru începutători, deoarece prezintă multe opțiuni de pariu. De asemenea, nu există o versiune mobilă a jocului, ceea ce poate fi o dezamăgire pentru jucătorii care doresc să joace pe dispozitive mobile. În plus, viteza de încărcare a jocului poate fi lentă la unele conexiuni de internet, ceea ce poate fi frustrant.

joaca Red Baron app la casino online în România

Cea mai bună strategie pentru a câștiga la Red Baron app într-un casino online

Dacă cautați cea mai bună strategie pentru a câștiga la Red Baron app într-un casino online din România, suntem aici pentru a Vă ajuta. În primul rând, înțelegeți mecanismul jocului și setați un buget. Utilizați bonusurile și ofertele de bun venit oferite de către casinouri. Joacă la versiunea demo a jocului pentru a vă exersa. Implementați o strategie de gestionare a băncii și nu uitați să vă fixați un obiectiv de câștig. De asemenea, luați în considerare să vă exersați pe versiunile practice pentru a dezvolta abilități.

Red Baron app: ce trebuie să știi înainte de a începe să joacă la un casino online

Înainte de a începe să jucați la un casino online în România, există câteva lucruri cheie pe care le trebuie să le știți despre aplicația Red Baron.
1. Red Baron este o aplicație de jocuri de casino online licențiată și regulamentată.
2. Poți găsi o varietate de jocuri de noroc, inclusiv jocuri de masă și sloturi.
3. Există bonusuri și promoții disponibile pentru jucători noi și existenți.
4. Red Baron are o interfață ușor de utilizat, cu opțiuni clare pentru pariere și retragere.
5. Există, de asemenea, opțiuni de sprijin disponibile pentru jucători care au nevoie de ajutor.
6. Este important să jucați responsabil și să setați un buget înainte de a începe să jucați.

Cum să alegi cel mai bun casino online pentru a juca Red Baron app în România

Doriți să alegeți cel mai bun casino online pentru a juca Red Baron app în România? În primul rând, verificați dacă casino-ul este licențiat și reglementat de Autoritatea Națională a Jocurilor de Noroc din România. În al doilea rând, asigurați-vă că oferă o varietate de metode de plată sigure și rapide, inclusiv lei românești. Nu uitați să verificați și bonusurile de bunvenit și programele de fidelitate oferite de casino. De asemenea, este important să verificați dacă casino-ul are o versiune tradusă în limba română și dacă oferă suport client 24/7. În sfârșit, citiți recenziile și comentariile altor jucători pentru a vă face o o idee despre experiența lor cu casino-ul online ales.

joaca Red Baron app la casino online în România

Red Baron app: o recenzie a jocului în cadrul casino-urilor online din România

Red Baron app: o recenzie a jocului în cadrul casino-urilor online din România. Jocul Red Baron este un slot popular, oferit de către câteva dintre cele mai bune casinouri online din România. Acesta vine cu o temă aviatică și include imagini și sunete uimitoare. Red Baron poate fi jucat pe calculator, tabletă sau telefon mobil. Jocul oferă, de asemenea, o funcție de joc gratis, care permite jucătorilor să se antreneze înainte de a juca cu adevărat. Red Baron este un joc distractiv și plin de acțiune, perfect pentru oricine caută o experiență de casino online emoționantă.

Ion, a 35-year-old engineer from Bucharest, recently discovered the Red Baron app while playing at an online casino in Romania. He was immediately impressed by the high-quality graphics and the exciting gameplay. Ion says that he has never felt more engaged while playing a slot game, and he appreciates the historical theme of the Red Baron. He Red Baron casino also enjoys the bonus rounds, which he finds to be both challenging and rewarding. Ion highly recommends the Red Baron app to anyone looking for a thrilling and immersive gaming experience.

Maria, a 40-year-old teacher from Cluj, has been playing the Red Baron app at a popular online casino in Romania for the past few weeks. She finds the game to be both entertaining and educational, as she has learned a lot about World War I aviation. Maria particularly enjoys the attention to detail in the game’s design, from the realistic aircraft to the historical events depicted in the bonus rounds. She also appreciates the game’s fairness and the potential for big wins. Overall, Maria is very satisfied with the Red Baron app and plans to continue playing it in the future.

Alex, a 28-year-old marketing specialist from Timisoara, recently tried out the Red Baron app at an online casino in Romania. He found the game to be well-designed and engaging, with a variety of features that kept him interested. Alex appreciated the game’s simplicity and ease of use, as well as the potential for big wins. However, he did not find the game to be particularly innovative or unique. Overall, Alex had a positive experience with the Red Baron app and would recommend it to others looking for a solid slot game to play online.

Câteva întrebări frecvente despre jocul Red Baron app la casino-uri online din România:

Poți să joci Red Baron app în România în cadrul unor casino-uri online renommate. Verifică dacă jocul este disponibil în secțiunea de jocuri a casino-ului ales.

Red Baron app este un joc de slot popular, cu tematică de aviație. Asigură-te că înțelegi regulile și mecanica jocului înainte de a începe să pariezi.

Verifică dacă casino-ul online ales oferă bonusuri sau promoții speciale pentru jocul Red Baron app. Acestea pot crește șansele tale de câștig.

Design and Develop by Ovatheme